home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revolution - Das Atari CD Magazin 1997
/
Revolution - Das Atari CD Magazin 1.iso
/
software
/
document
/
ainfop14
/
make_ink.gfa
(
.txt
)
< prev
next >
Wrap
GFA-BASIC Atari
|
1995-11-02
|
1KB
|
52 lines
$M258400
$*& ! Longwort-Integer-Multiplikation - 'MULS'
$%3 ! Longwort-Integer-Division - Integer
$RC& ! RC_INTERSECT-Parameter als 2 Byte
$S< ! SELECT/CASE auf Programmlänge optimiert
$F< ! ENDFUNC-Zeilen ignorieren
CLS
PRINT " Konvertiere ITB.TXT, einen Moment bitte..."
PRINT " "+STRING$(78,"-")
DIM z$(1)
OPEN "I",#1,"ITB.TXT"
OPEN "O",#2,"MAKENEWS.INK"
RECALL #1,z$(),1,z%
WHILE z%=1
IF z$(0)<>""
idx$=LEFT$(z$(0))
'
SELECT idx$
CASE "U","#","-","D","Z","G"
DEFAULT
IF idx$="*"
ok!=FALSE
box$=MID$(z$(0),2)
ausg$=LEFT$(box$+SPACE$(8),8)+" "
ENDIF
IF idx$="N"
boxname$=MID$(z$(0),2)
ausg$=ausg$+LEFT$(boxname$+SPACE$(40),40)+" "
ENDIF
IF idx$="T"
tel$=MID$(z$(0),2)
IF LEFT$(tel$,4)="+49-"
tel$="0"+MID$(tel$,5)
ENDIF
ausg$=ausg$+tel$
ok!=TRUE
ENDIF
IF ok!=TRUE AND ausg$<>""
PRINT #2,ausg$
PRINT ausg$
ausg$=""
ENDIF
ENDSELECT
'
ENDIF
' PAUSE 5
RECALL #1,z$(),1,z%
WEND
CLOSE #1
CLOSE #2
EDIT